home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------
- // exam10.ftp
- // iFTP example script, passing parameters to scripts
- // This script will echo out the parameters passed to the script
- // 9 maximum Paramstrs can be passed.
- //
- // Call this script like so: iftp /run exam10 opt1 opt2 opt3
- //
- //---------------------------------------------------------------------
-
- Echo 1 = %1
- Echo 2 = %2
- Echo 3 = %3
- Echo 4 = %4
- Echo 5 = %5
- Echo 6 = %6
- Echo 7 = %7
- Echo 8 = %8
- Echo 9 = %9
-
-